/* ── Palette ───────────────────────────────────────
   data.colors supplied:
     text:      #1a1216  → --ink (body text)
     primary:   #1b3a4b  → --primary (accent, fills, links)
     secondary: #e8d5b7  → --sand (borders, small marks only)
   Derived:
     --page-bg:    #fbfbfb
     --surface:    #ffffff
     --ink-soft:   #5c5054
     --primary:    #1b3a4b
     --primary-deep: #14303d
     --on-primary: #ffffff
     --sand:       #e8d5b7
     --sand-edge:  #d4c1a0
   Contrast checks:
     --ink on --page-bg:    ~15:1 ✓
     --primary on --page-bg: ~9:1  ✓
     --on-primary on --primary: ~9:1 ✓
   ────────────────────────────────────────────────── */

:root {
  --ink: #1a1216;
  --ink-soft: #5c5054;
  --primary: #1b3a4b;
  --primary-deep: #14303d;
  --on-primary: #ffffff;
  --sand: #e8d5b7;
  --sand-edge: #d4c1a0;
  --page-bg: #fbfbfb;
  --surface: #ffffff;

  --gap-s: clamp(1rem, 2vw, 1.5rem);
  --gap-y: clamp(3.5rem, 8vw, 6.5rem);
  --container: 1140px;

  --font-display: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --shadow-sm: 0 1px 3px rgba(26, 18, 22, .08);
  --shadow-md: 0 4px 14px rgba(26, 18, 22, .10), 0 1px 3px rgba(26, 18, 22, .06);
  --shadow-lg: 0 14px 38px rgba(26, 18, 22, .13), 0 4px 10px rgba(26, 18, 22, .07);

  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Base ────────────────────────────────────────── */
body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--primary-deep); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75em 1.75em;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn--light { background: var(--on-primary); color: var(--primary); }
.btn--light:hover { background: var(--sand); color: var(--primary-deep); box-shadow: var(--shadow-md); }
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,.5); color: var(--on-primary); }
.btn--ghost-light:hover { border-color: var(--on-primary); background: rgba(255,255,255,.08); }
.btn--lg { padding: .9em 2.5em; font-size: 1.0625rem; }

/* ── Section shared ─────────────────────────────── */
.section__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--primary);
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1rem;
  word-break: keep-all;
}
.section__lede {
  font-size: .9375rem;
  color: var(--ink-soft);
  max-width: 34em;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.section__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .875rem;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 3px;
  margin-top: 1.5rem;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.section__link:hover { color: var(--primary-deep); border-color: var(--primary-deep); gap: .85em; }
.section__link::after { content: "→"; font-size: .9em; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 251, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 18, 22, .07);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  margin-right: auto;
  transition: color .25s var(--ease);
}
.nav__logo:hover { color: var(--primary); }
.nav__logo-mark {
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}
.nav__logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid var(--sand);
  border-radius: 1px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__menu a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.nav__menu a:hover { color: var(--primary); }
.nav__cta {
  background: var(--primary);
  color: var(--on-primary) !important;
  padding: .55em 1.4em;
  border-radius: var(--radius);
  font-size: .8125rem;
  transition: background .25s var(--ease) !important;
}
.nav__cta:hover { background: var(--primary-deep); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 5fr 6fr;
  min-height: clamp(520px, 78vh, 720px);
}
.hero__panel {
  background: var(--primary);
  color: var(--on-primary);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--sand);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(232, 213, 183, .3);
  width: fit-content;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  word-break: keep-all;
  margin-bottom: .5rem;
}
.hero__tagline {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.75rem;
}
.hero__lede {
  font-size: .9375rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .82);
  max-width: 30em;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__rating {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: .5em;
}
.hero__rating-score { color: var(--sand); font-weight: 700; }
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About ───────────────────────────────────────── */
.about {
  padding: var(--gap-y) 0;
}
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__body {
  font-size: .9375rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.points {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.points__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(27, 58, 75, .06);
  padding: .5em 1em;
  border-radius: var(--radius);
}
.points__mark {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Gallery ────────────────────────────────────── */
.gallery-section {
  padding: var(--gap-y) 0;
  background: var(--surface);
  border-top: 1px solid rgba(26, 18, 22, .06);
  border-bottom: 1px solid rgba(26, 18, 22, .06);
}
.gallery-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.gallery-section__head { margin-bottom: 2.5rem; }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-s);
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.gallery__item:not(.gallery__item--wide) { aspect-ratio: 4 / 3; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); }

/* ── Reviews compact ─────────────────────────────── */
.reviews-compact {
  padding: var(--gap-y) 0;
}
.reviews-compact__head { margin-bottom: 2.5rem; }
.reviews-compact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-s);
}
.review-card {
  background: var(--surface);
  border: 1px solid rgba(26, 18, 22, .08);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card__rating {
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.review-card__text {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.review-card__meta {
  font-size: .8125rem;
  color: var(--ink-soft);
  display: flex;
  gap: 1em;
}
.review-card__meta span { font-weight: 500; color: var(--ink); }

/* ── FAQ compact ─────────────────────────────────── */
.faq-compact {
  padding: var(--gap-y) 0;
  background: var(--surface);
  border-top: 1px solid rgba(26, 18, 22, .06);
  border-bottom: 1px solid rgba(26, 18, 22, .06);
}
.faq-compact__head { margin-bottom: 2rem; }
.faq-compact__list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(26, 18, 22, .1);
}
.faq-item__q {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  transition: color .25s var(--ease);
}
.faq-item__q:hover { color: var(--primary); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-item__q::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__a {
  font-size: .9375rem;
  line-height: 1.85;
  color: var(--ink-soft);
  padding: 0 0 1.25rem;
}

/* ── Hours ───────────────────────────────────────── */
.hours {
  padding: var(--gap-y) 0;
}
.hours__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hours__points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hours__points li {
  font-size: .875rem;
  color: var(--ink-soft);
  padding-left: 1.25rem;
  position: relative;
}
.hours__points li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.hours__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours__table th,
.hours__table td {
  padding: .85rem 1.25rem;
  font-size: .9375rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 18, 22, .06);
}
.hours__table th {
  width: 3em;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}
.hours__table tr:last-child th,
.hours__table tr:last-child td { border-bottom: none; }
.hours__table tr[data-day="0"] td { color: var(--ink-soft); }
.hours__table tr.is-today {
  background: rgba(27, 58, 75, .05);
}
.hours__table tr.is-today th::after {
  content: " 本日";
  font-size: .625rem;
  font-weight: 500;
  color: var(--on-primary);
  background: var(--primary);
  padding: 1px 5px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: .35em;
}

/* ── Access ──────────────────────────────────────── */
.access {
  padding: var(--gap-y) 0;
  background: var(--surface);
  border-top: 1px solid rgba(26, 18, 22, .06);
  border-bottom: 1px solid rgba(26, 18, 22, .06);
}
.access__head { margin-bottom: 2.5rem; }
.access__body {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.access__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.access__row {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 18, 22, .08);
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 1rem;
  align-items: baseline;
}
.access__row:first-child { border-top: 1px solid rgba(26, 18, 22, .08); }
.access__row dt {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--primary);
}
.access__row dd {
  font-size: .9375rem;
  color: var(--ink);
}
.access__row dd a { color: var(--primary); }
.access__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  background: #e8e8e8;
}
.access__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; }

/* ── SNS ─────────────────────────────────────────── */
.sns {
  padding: var(--gap-y) 0;
}
.sns__head { margin-bottom: 2.5rem; }
.sns__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-s);
  margin-bottom: 2rem;
}
.sns__post {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.sns__post:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sns__post-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sns__post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.sns__post:hover .sns__post-media img { transform: scale(1.03); }
.sns__post-body { padding: 1.25rem 1.25rem 1.5rem; }
.sns__post-text {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: .75rem;
}
.sns__post-meta {
  font-size: .75rem;
  color: var(--ink-soft);
}
.sns__follow {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.sns__follow-link {
  display: inline-flex;
  align-items: center;
  padding: .5em 1.25em;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(27, 58, 75, .25);
  border-radius: var(--radius);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.sns__follow-link:hover {
  background: var(--primary);
  color: var(--on-primary) !important;
  border-color: var(--primary);
}

/* ── Closing ─────────────────────────────────────── */
.closing {
  background: var(--primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.closing__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.closing__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-primary);
  word-break: keep-all;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--page-bg);
  border-top: 1px solid rgba(26, 18, 22, .08);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
}
.footer__tagline {
  font-size: .8125rem;
  color: var(--ink-soft);
}
.footer__info { display: flex; flex-direction: column; gap: 0; }
.footer__row {
  padding: .625rem 0;
  border-bottom: 1px solid rgba(26, 18, 22, .06);
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 1rem;
  align-items: baseline;
}
.footer__row dt {
  font-size: .75rem;
  font-weight: 500;
  color: var(--primary);
}
.footer__row dd {
  font-size: .8125rem;
  color: var(--ink);
}
.footer__row dd a { color: var(--primary); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer__nav a {
  font-size: .8125rem;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.footer__nav a:hover { color: var(--primary); }
.footer__copy {
  font-size: .75rem;
  color: var(--ink-soft);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 18, 22, .06);
}

/* ── Reveal animation ────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .reviews-compact__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    gap: 0;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    display: block;
    padding: .875rem 0;
    border-bottom: 1px solid rgba(26, 18, 22, .06);
    font-size: .9375rem;
  }
  .nav__cta {
    margin-top: .75rem;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .hero__media {
    aspect-ratio: 16 / 9;
    min-height: 220px;
    order: -1;
  }
  .hero__panel {
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }

  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__image { order: -1; max-width: 520px; }

  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__item:not(.gallery__item--wide) { aspect-ratio: 16 / 9; }

  .hours__inner {
    grid-template-columns: 1fr;
  }

  .access__body {
    grid-template-columns: 1fr;
  }
  .access__map { min-height: 280px; }

  .sns__posts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery__item:hover img,
  .sns__post:hover .sns__post-media img {
    transform: none;
  }
  * { scroll-behavior: auto !important; }
}

/* ── Subpage hero ────────────────────────────────── */
.page-hero {
  background: var(--primary);
  color: var(--on-primary);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.page-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--sand);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-primary);
  word-break: keep-all;
  margin-bottom: 1rem;
}
.page-hero__lede {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.5rem;
}
.page-hero__rating {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: .5em;
}
.page-hero__rating-score { color: var(--sand); font-weight: 700; }

/* ── FAQ page ────────────────────────────────────── */
.faq-page {
  padding: var(--gap-y) 0;
}
.faq-page__list {
  max-width: 720px;
}
.faq-page__contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 18, 22, .08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.faq-page__contact p {
  font-size: .9375rem;
  color: var(--ink-soft);
}
.btn--primary {
  background: var(--primary);
  color: var(--on-primary) !important;
}
.btn--primary:hover { background: var(--primary-deep); box-shadow: var(--shadow-md); }

/* ── Reviews page ────────────────────────────────── */
.reviews-page {
  padding: var(--gap-y) 0;
}
.reviews-page__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.review-card--full {
  padding: 2rem 2rem;
}
.review-card--full .review-card__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.85;
}

/* ── Subpage responsive ──────────────────────────── */
@media (max-width: 768px) {
  .review-card--full { padding: 1.5rem 1.25rem; }
  .faq-page__contact { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Overflow & tap-target fixes ─────────────────── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
.hero { max-width: 100%; overflow: hidden; }
.hero__media { max-width: 100%; overflow: hidden; }

/* Nav links: min 44px height */
.nav__menu > a:not(.nav__cta) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Section link: min 44px height */
.section__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: .375em 0 .375em;
}

/* SNS follow links: min 44px height */
.sns__follow-link {
  min-height: 44px;
}

/* Footer nav links: min 44px height */
.footer__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

/* Access info links */
.access__row dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Footer dd links */
.footer__row dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* FAQ summary: min 44px height */
.faq-item__q {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ── Subpage <main> fix ──────────────────────────── */
main { display: block; }

/* ── Remaining tap-target & hover fixes ───────────── */

/* Logo: min 44px height */
.nav__logo {
  min-height: 44px;
}

/* Toggle button: 44×44 + transition */
.nav__toggle {
  width: 44px;
  height: 44px;
  transition: background .25s var(--ease);
  border-radius: var(--radius);
}
.nav__toggle:hover {
  background: rgba(27, 58, 75, .06);
}

/* CTA: nudge past 44px */
.nav__cta {
  padding: .625em 1.4em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Footer phone/website links */
.footer__row dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* Hero CTA buttons: min 44px */
.hero__cta .btn {
  min-height: 44px;
}

/* Closing CTA: min 44px */
.closing .btn {
  min-height: 44px;
}
